home *** CD-ROM | disk | FTP | other *** search
/ NetNews Offline 2 / NetNews Offline Volume 2.iso / news / comp / lang / c++-part1 / 8644 < prev    next >
Encoding:
Internet Message Format  |  1996-08-05  |  1.3 KB

  1. Path: redstone.interpath.net!mercury!softbase
  2. From: softbase@mercury.interpath.net (Scott McMahan - Softbase Systems)
  3. Newsgroups: comp.lang.c++,comp.lang.c
  4. Subject: Re: C++ Interpreter (source):  Where?
  5. Followup-To: comp.lang.c++,comp.lang.c
  6. Date: 25 Feb 1996 19:43:12 GMT
  7. Organization: Interpath -- Providing Internet access to North Carolina
  8. Message-ID: <4gqe4g$jfo@redstone.interpath.net>
  9. References: <4go04r$b5i@news1.wolfe.net>
  10. NNTP-Posting-Host: mercury.interpath.com
  11. X-Newsreader: TIN [version 1.2 PL2]
  12.  
  13. Joshua Gooding (jgooding@dune.wolfenet.com) wrote:
  14.  
  15. : Does anyone know where I can get C/C++ source code for a C/C++
  16. : Interpreter?
  17.  
  18. You can get the source for a C interpreter in two places:  where ever
  19. Al Steven's Dr Dobbs sources are on the net, the Quincy C interpreter;
  20. and in C: The Complete Reference 3rd Ed. by Herb Schildt.  These are
  21. the only two I know. Neither of these is "good" -- Schildt's takes
  22. a few liberties with the language to fit the interpreter in 
  23. the space allotted (but full source is there), and doesn't have the
  24. library at all; Stevens' is better but I've heard you can
  25. exceed its limits quickly.
  26.  
  27. I don't know of a C++ intepreter. It might be possible to write one,
  28. but I wouldn't even want to consider what it would involve. C's easy to
  29. interpret, but C++ would be very difficult.
  30.  
  31. Scott
  32.  
  33.